home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 40 / Issue 40.iso / pc / MacToolkit / 00034_Tool1.ls < prev    next >
Encoding:
Text File  |  2000-09-26  |  757 b   |  31 lines

  1. on mouseWithin
  2.   if sprite(the currentSpriteNum).foreColor = 70 then
  3.     sprite(the currentSpriteNum).foreColor = 70
  4.     member("Title1").foreColor = 0
  5.     put EMPTY into member "Infofield"
  6.   else
  7.     if sprite(the currentSpriteNum).foreColor <> 70 then
  8.       cursor(280)
  9.       sprite(the currentSpriteNum).foreColor = 255
  10.       member("Title1").foreColor = 0
  11.     end if
  12.   end if
  13. end
  14.  
  15. on mouseLeave
  16.   cursor(0)
  17.   if sprite(the currentSpriteNum).foreColor = 70 then
  18.     sprite(the currentSpriteNum).foreColor = 70
  19.     member("Title1").foreColor = 0
  20.   else
  21.     if sprite(the currentSpriteNum).foreColor <> 70 then
  22.       sprite(the currentSpriteNum).foreColor = 246
  23.       member("Title1").foreColor = 255
  24.     end if
  25.   end if
  26. end
  27.  
  28. on mouseUp
  29.   go("Title1")
  30. end
  31.